home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdebug.h < prev    next >
C/C++ Source or Header  |  1997-06-15  |  5KB  |  114 lines

  1. /* Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdebug.h */
  20. /* Debugging machinery definitions */
  21.  
  22. #ifndef gdebug_INCLUDED
  23. #  define gdebug_INCLUDED
  24.  
  25. /* Define the array of debugging flags, indexed by character code. */
  26. extern char gs_debug[128];
  27. #define gs_debug_c(c)\
  28.   ((c)>='a' && (c)<='z' ? gs_debug[c] | gs_debug[(c)^32] : gs_debug[c])
  29. #ifdef DEBUG
  30. #  define gs_if_debug_c(c) gs_debug_c(c)
  31. #else
  32. #  define gs_if_debug_c(c) 0
  33. #endif
  34. /* Define an alias for a specialized debugging flag */
  35. /* that used to be a separate variable. */
  36. #define gs_log_errors gs_debug['#']
  37.  
  38. /* If debugging, direct all error output to gs_debug_out. */
  39. extern FILE *gs_debug_out;
  40. #ifdef DEBUG
  41. #undef dstderr
  42. #define dstderr gs_debug_out
  43. #undef estderr
  44. #define estderr gs_debug_out
  45. #endif
  46.  
  47. /* Redefine eprintf_program_name and lprintf_file_and_line as procedures */
  48. /* so one can set breakpoints on them. */
  49. #undef eprintf_program_name
  50. extern void eprintf_program_name(P2(FILE *, const char *));
  51. #undef lprintf_file_and_line
  52. extern void lprintf_file_and_line(P3(FILE *, const char *, int));
  53.  
  54. /* Insert code conditionally if debugging. */
  55. #ifdef DEBUG
  56. #  define do_debug(x) x
  57. #else
  58. #  define do_debug(x)
  59. #endif
  60.  
  61. /* Debugging printout macros. */
  62. /* The do...while construct is to avoid capturing a following 'else'. */
  63. #ifdef DEBUG
  64. #  define if_debug0(c,s)\
  65.     do { if (gs_debug_c(c)) dprintf(s); } while (0)
  66. #  define if_debug1(c,s,a1)\
  67.     do { if (gs_debug_c(c)) dprintf1(s,a1); } while (0)
  68. #  define if_debug2(c,s,a1,a2)\
  69.     do { if (gs_debug_c(c)) dprintf2(s,a1,a2); } while (0)
  70. #  define if_debug3(c,s,a1,a2,a3)\
  71.     do { if (gs_debug_c(c)) dprintf3(s,a1,a2,a3); } while (0)
  72. #  define if_debug4(c,s,a1,a2,a3,a4)\
  73.     do { if (gs_debug_c(c)) dprintf4(s,a1,a2,a3,a4); } while (0)
  74. #  define if_debug5(c,s,a1,a2,a3,a4,a5)\
  75.     do { if (gs_debug_c(c)) dprintf5(s,a1,a2,a3,a4,a5); } while (0)
  76. #  define if_debug6(c,s,a1,a2,a3,a4,a5,a6)\
  77.     do { if (gs_debug_c(c)) dprintf6(s,a1,a2,a3,a4,a5,a6); } while (0)
  78. #  define if_debug7(c,s,a1,a2,a3,a4,a5,a6,a7)\
  79.     do { if (gs_debug_c(c)) dprintf7(s,a1,a2,a3,a4,a5,a6,a7); } while (0)
  80. #  define if_debug8(c,s,a1,a2,a3,a4,a5,a6,a7,a8)\
  81.     do { if (gs_debug_c(c)) dprintf8(s,a1,a2,a3,a4,a5,a6,a7,a8); } while (0)
  82. #  define if_debug9(c,s,a1,a2,a3,a4,a5,a6,a7,a8,a9)\
  83.     do { if (gs_debug_c(c)) dprintf9(s,a1,a2,a3,a4,a5,a6,a7,a8,a9); } while (0)
  84. #  define if_debug10(c,s,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)\
  85.     do { if (gs_debug_c(c)) dprintf10(s,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10); } while (0)
  86. #  define if_debug11(c,s,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)\
  87.     do { if (gs_debug_c(c)) dprintf11(s,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11); } while (0)
  88. #  define if_debug12(c,s,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)\
  89.     do { if (gs_debug_c(c)) dprintf12(s,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12); } while (0)
  90. #else
  91. #  define if_debug0(c,s) DO_NOTHING
  92. #  define if_debug1(c,s,a1) DO_NOTHING
  93. #  define if_debug2(c,s,a1,a2) DO_NOTHING
  94. #  define if_debug3(c,s,a1,a2,a3) DO_NOTHING
  95. #  define if_debug4(c,s,a1,a2,a3,a4) DO_NOTHING
  96. #  define if_debug5(c,s,a1,a2,a3,a4,a5) DO_NOTHING
  97. #  define if_debug6(c,s,a1,a2,a3,a4,a5,a6) DO_NOTHING
  98. #  define if_debug7(c,s,a1,a2,a3,a4,a5,a6,a7) DO_NOTHING
  99. #  define if_debug8(c,s,a1,a2,a3,a4,a5,a6,a7,a8) DO_NOTHING
  100. #  define if_debug9(c,s,a1,a2,a3,a4,a5,a6,a7,a8,a9) DO_NOTHING
  101. #  define if_debug10(c,s,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) DO_NOTHING
  102. #  define if_debug11(c,s,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11) DO_NOTHING
  103. #  define if_debug12(c,s,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12) DO_NOTHING
  104. #endif
  105.  
  106. /* Debugging support procedures in gsmisc.c */
  107. void debug_dump_bytes(P3(const byte *from, const byte *to, 
  108.              const char *msg));
  109. void debug_dump_bitmap(P4(const byte *from, uint raster, uint height,
  110.               const char *msg));
  111. void debug_print_string(P2(const byte *str, uint len));
  112.  
  113. #endif                /* gdebug_INCLUDED */
  114.